projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f46cc15
)
(Fkill_local_variable): Call find_symbol_value directly,
author
Richard M. Stallman
<rms@gnu.org>
Mon, 4 Mar 1996 17:38:35 +0000
(17:38 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 4 Mar 1996 17:38:35 +0000
(17:38 +0000)
not via Fsymbol_value, to avoid getting void-variable error.
src/data.c
patch
|
blob
|
history
diff --git
a/src/data.c
b/src/data.c
index 34896fe980b1c1aad4bbc269abe222bf47ba6297..23b15d0081f4dbda69cf5f4299b921420f578746 100644
(file)
--- a/
src/data.c
+++ b/
src/data.c
@@
-1363,7
+1363,7
@@
From now on the default value will apply in this buffer.")
if (current_buffer == XBUFFER (*pvalbuf))
{
*pvalbuf = Qnil;
-
Fsymbol_value
(variable);
+
find_symbol_value
(variable);
}
}